home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / easydr2.zip / EDRQLB.BAT < prev    next >
DOS Batch File  |  1991-11-15  |  552b  |  20 lines

  1. echo off
  2. cls
  3. echo ----------------------------------------------------------
  4. echo This batch file convert EasyDoor .LIB file to a .QLB file.
  5. echo You may edit this file if you have a QuickBasic version
  6. echo different from 4.5.
  7. echo ----------------------------------------------------------
  8. If exist %1.lib goto GoodName
  9. echo Usage: EdrQLB.BAT (libname, no extension)
  10. goto Exit
  11.  
  12. :GoodName
  13.  
  14. link /nod /noe /qu %1.lib+,,,,bqlb45
  15. Rem                               ^^ Change this number for other version
  16. Rem
  17. echo %1.QLB created!
  18.  
  19. :Exit
  20.